arm: remove hard tabs
authorIan Campbell <ian.campbell@citrix.com>
Thu, 22 Mar 2012 14:26:41 +0000 (14:26 +0000)
committerIan Campbell <ian.campbell@citrix.com>
Thu, 22 Mar 2012 14:26:41 +0000 (14:26 +0000)
The only hard tabs remaining in xen/arch/arm and xen/include/asm-arm are now
only in .S files and .[ch] imported from Linux

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Committed-by: Ian Campbell <ian.campbell@citrix.com>
xen/arch/arm/domctl.c
xen/arch/arm/sysctl.c
xen/include/asm-arm/numa.h

index d957f218f9be342e1a2a560ac2bd48b4e29c11f0..1a5f79fef550bfb3f0cafb3d86f016754cb762e0 100644 (file)
@@ -13,7 +13,7 @@
 long arch_do_domctl(struct xen_domctl *domctl,
                     XEN_GUEST_HANDLE(xen_domctl_t) u_domctl)
 {
-       return -ENOSYS;
+    return -ENOSYS;
 }
 
 /*
index 50101c77800f1996d64ca1cb3a5edd5641f8e019..e8e1c0de32381b809bbde53c00a251ac8c47e917 100644 (file)
@@ -13,9 +13,9 @@
 #include <public/sysctl.h>
 
 long arch_do_sysctl(struct xen_sysctl *sysctl,
-                   XEN_GUEST_HANDLE(xen_sysctl_t) u_sysctl)
+                    XEN_GUEST_HANDLE(xen_sysctl_t) u_sysctl)
 {
-       return -ENOSYS;
+    return -ENOSYS;
 }
 
 /*
index cffee5cce9e949333b31ca61da0195ce81d806d4..1b060e6ae44ebf84e7708247e49dae9829167a64 100644 (file)
@@ -3,11 +3,11 @@
 
 /* Fake one node for now... */
 #define cpu_to_node(cpu) 0
-#define node_to_cpumask(node)  (cpu_online_map)
+#define node_to_cpumask(node)   (cpu_online_map)
 
 static inline __attribute__((pure)) int phys_to_nid(paddr_t addr)
 {
-        return 0;
+    return 0;
 }
 
 #endif /* __ARCH_ARM_NUMA_H */